home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-2001 - Modelworks Software
-
- // Insert script helper for:
-
- /**
- @Object: WebEdit
- @Property: processDialogMessages - a boolean controlling the flow
- of message processing. The default value is false. If true then
- dialog messages (e.g., tabs) will be processed by the web browser
- control and not available for processing within scripts.
- @Syntax: webEdit.processDialogMessages
- @Summary: processDialogMessages - process dialog messages flag
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- editor.replace("webEdit.processDialogMessages", selection);
- editor.setActive("Insert webEdit.processDialogMessages");
- }
- }
-
- !!/Script
-